home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_9.zip / TIME.H < prev    next >
C/C++ Source or Header  |  1992-10-05  |  480b  |  19 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9. /* include <time.h> header file, accounting for BSD silliness */
  10. /* file config.h must be included before this one to set BSD properly */
  11. #ifndef _time_h
  12. #define _time_h
  13. #ifdef BSD
  14. #include <sys/time.h>
  15. #else
  16. #include <time.h>
  17. #endif
  18. #endif
  19.